公司地址:茂名市人民南路新村大院22號101
電話:13592986386
發(fā)布時間:2017/3/2 17:19:20
背景
在項目中用到小票打印功能,鑒于打印機(jī)支持pos命令由此而開發(fā)。 支持安卓4.0.4+ 測試設(shè)備htc(androi4.0.4),小米(androi4.4.4),華為暢享5s(androi5.1),華為mate8(androi6.0)
支持
模塊接口
初始化藍(lán)牙并搜索附近的藍(lán)牙設(shè)備
scan({}, callback(ret,err))
ret:
{ status: true //掃描開始 }
err:
var BluetoothPrinter = api.require('djyPrinter');
BluetoothPrinter.scan({}, function (ret, err) { })
Android系統(tǒng)
可提供的1.0.0及更高版本
取消搜索附近的藍(lán)牙設(shè)備
cancelScan({}, callback(ret,err))
ret:
{ status: true //掃描開始 }
err:
var BluetoothPrinter = api.require('djyPrinter');
BluetoothPrinter.cancelScan({}, function (ret, err) { })
Android系統(tǒng)
可提供的1.0.0及更高版本
列出所有搜索到的藍(lán)牙設(shè)備
listBT({}, callback(ret,err))
ret:
{
[
address://地址 state://狀態(tài) name: //名稱(用于連接設(shè)備) ]
}
err:
var BluetoothPrinter = api.require('djyPrinter');
BluetoothPrinter.listBT({}, function (ret, err) { })
Android系統(tǒng)
可提供的1.0.0及更高版本
連接(配對)藍(lán)牙設(shè)備。
connect({params}, callback(ret,err))
name
ret:
{ status: true //已經(jīng)連接 }
err
var BluetoothPrinter = api.require('djyPrinter');
BluetoothPrinter.connect({
name: 'Gprinter_C20B' },function (ret, err) { });
Android系統(tǒng)
可提供的1.0.0及更高版本
斷開設(shè)備
disconnectBT({}, callback(ret,err))
ret:
{ status: true //已經(jīng)連接 }
err
var BluetoothPrinter = api.require('djyPrinter');
BluetoothPrinter.disconnectBT({
},function (ret, err) {
});
Android系統(tǒng)
可提供的1.0.0及更高版本
獲取當(dāng)前掃描到的所有外圍設(shè)備信息
printPOSCommand({params}, callback(ret,err))
{ msg: "" //pos命令以及需要打印的內(nèi)容連接的字符串 支持中文 }
ret:
{ status: true //成功 }
err:
{ msg: //錯誤信息 }
var BluetoothPrinter = api.require('djyPrinter');
BluetoothPrinter.printPOSCommand({
msg: String.fromCharCode(29) + String.fromCharCode(33) + String.fromCharCode(17) + //字體放大 String.fromCharCode(27) + String.fromCharCode(97) + String.fromCharCode(1) + //居中 String.fromCharCode(10) + String.fromCharCode(10) + "零點美食城\n" + String.fromCharCode(29) + String.fromCharCode(33) + String.fromCharCode(0) + //字體放大 String.fromCharCode(27) + String.fromCharCode(97) + String.fromCharCode(0) + "西紅柿雞蛋面" + "12元" + "\n" + String.fromCharCode(27) + String.fromCharCode(97) + String.fromCharCode(0) + String.fromCharCode(10) + "總計12元" + "\n" // + "\n" + "\n" + "\n" + "\n" + "\n" + "\n" }, function (ret, err) { });
Android系統(tǒng)
可提供的1.0.0及更高版本